1. Open the webChatUI.js file.
2. Inside the "closePanel" function, change the first line below to the second:
    if (webSocket.readyState !== 2)
    if (webSocket.readyState !== WebSocket.CLOSING)

Updating webonhold messages:
1.Open webChat.js file.
2.Insert the following at line 505(inside the notifyNewParticipant function right after the line "webChat.updateUsers(agents);"):
	webChat.webOnHoldComfortGroups = body.webOnHoldComfortGroup[0];

Explaining the topic field
1. Open the home.html page.
2. Locate the topic field
3. Copy the title attribute and paste it in. You may customise this if you wish.

Displaying timestamp for Cobrowsing sessions
1. Open the webChat.js file.
2. Copy and paste the notifyNewCoBrowseSessionKeyMessage function into your version.

Preventing user from clicking certain URLs during a CoBrowsing session
1. Add the "ignoreCobrowse" CSS class to the URL
2. Update the cobrowsing files with that from the SDK.